CruiseControl.NET : Custom Builder Plug-in
This page last changed on Jun 24, 2005 by orogers.
Steps:
For more information, please take a look at the sample code contained in the folder /docs/developer/samples. Sample Builder Classusing System; using Exortech.NetReflector; using ThoughtWorks.CruiseControl.Core; namespace ThoughtWorks.CruiseControl.Sample.Builder { [ReflectorType("myBuilder")] public class NAntBuilder : ITask { public void Run(IntegrationResult result) { Console.WriteLine("Hello World!"); } } } Sample Config File<cruisecontrol> <project name="myproject"> <builder type="mybuilder"> <!-- include custom builder properties here --> </builder> <!-- include other project elements here --> </project> </cruisecontrol>
|
Document generated by Confluence on Jun 26, 2005 17:22 |